/-app ...
/-app/boot
/-app/imports
/-app/imports/raphael
raphael-min.js
/-app/layout
ApplicationLayout.ts
/-app/typings
raphael.d.ts
pe.html
/-app1
/-core
/-headers
/-io
/-managed
/-unmanaged
pe.ts
85
 
1
<!doctype html>
2
<html>
3
<head>
4
<title>PE.js loading...</title>
5
6
<!-- CSS needs to be populated up-front, nothing can be displayed correctly without it -->
7
<style>
8
###app/boot/boot.css###
9
</style>
10
11
</head>
12
<body>
13
14
<!--
15
  All UI shall be contained within this element.
16
17
  At startup it might contain junk because the HTML was saved/scraped,
18
  so the first thing to do is to destroy the content here and replace it with boot UI.
19
-->
20
<div id=uisite>PE.js booting...</div>
21
22
23
<!-- Small chunk of code cleaning up uisite and putting some basic boot UI in there. -->
24
<script>
25
###app/boot/boot.js###
26
</script>
27
28
29
30
<!-- libraries -->
31
<script>
32
###app/imports/raphael/raphael-min.js###
33
</script>
34
35
<!-- Actual PE.js code. -->
36
<script>
37
###pe.ts:build###
38
</script>
39
40
41
<!-- EXE/DLL binary content embedded into HTML DOM -->
42
<div id=datasite style="display: none;" data-total-size=16>
43
44
  <div data-file=mscorlib.dll >
45
    <div id=data00 data-complete-size=1>###app1/mscorlib/00.base64###   </div>
46
    <script>pe.app.boot.reportDownloadProgress()</script>
47
    <div id=data01 data-complete-size=2>###app1/mscorlib/01.base64###   </div>
48
    <script>pe.app.boot.reportDownloadProgress()</script>
49
    <div id=data02 data-complete-size=3>###app1/mscorlib/02.base64###   </div>
50
    <script>pe.app.boot.reportDownloadProgress()</script>
51
    <div id=data03 data-complete-size=4>###app1/mscorlib/03.base64###   </div>
52
    <script>pe.app.boot.reportDownloadProgress()</script>
53
    <div id=data04 data-complete-size=5>###app1/mscorlib/04.base64###   </div>
54
    <script>pe.app.boot.reportDownloadProgress()</script>
55
    <div id=data05 data-complete-size=6>###app1/mscorlib/05.base64###   </div>
56
    <script>pe.app.boot.reportDownloadProgress()</script>
13:72 primitive type string transform(tstr: string): Raphael.Element